home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Magazine / Morphos / GCC / ppc-amigaos / include / clib / macros.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  351b  |  18 lines

  1. #ifndef CLIB_MACROS_H
  2. #define CLIB_MACROS_H
  3. /*
  4. **    $VER: macros.h 36.0 (30.11.90)
  5. **    Includes Release 40.15
  6. **
  7. **    C prototypes
  8. **
  9. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  10. **        All Rights Reserved
  11. */
  12.  
  13. #define MAX(a,b)    ((a)>(b)?(a):(b))
  14. #define MIN(a,b)    ((a)<(b)?(a):(b))
  15. #define ABS(x)        ((x<0)?(-(x)):(x))
  16.  
  17. #endif    /* CLIB_MACROS_H */
  18.